initialize

abstract fun initialize(module: Module)

Initializes the control with its associated module context.

This method is typically called once before the control is first used or made active. It allows the control to set up its internal state, resources, and prepare for operation based on the provided Module data.

If isAutoStart is true, implementations might also trigger their start logic within or immediately after initialization.

Parameters

module

The Module instance providing context and configuration for this control. Should not be null.

See also